584b2427e88212439255b0cebd85e3db1b982402,src/main/java/genesis/world/gen/feature/WorldGenTreeLepidodendron.java,WorldGenTreeLepidodendron,doGenerate,#World#Random#BlockPos#,21

Before Change


	{
		int height = heightProvider.get(rand) - 5;
		
		if (!WorldUtils.isMatchInCylinder(world, pos.up(), WorldBlockMatcher.STANDARD_AIR, 6, pos.up().getY(), pos.up(height).getY()))
			return false;
		
		for (int i = 0; i < height; i++)

After Change


	@Override
	public boolean doGenerate(World world, Random rand, BlockPos pos)
	{
		int height = heightProvider.get(rand) - 5;
		
		if (WorldUtils.isMatchInCylinder(world, pos, WorldBlockMatcher.not(WorldBlockMatcher.STANDARD_AIR), 1, 1, height))
			return false;
		
		for (int i = 0; i < height; i++)